home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / zmdm / makefile < prev    next >
Makefile  |  1993-06-26  |  1KB  |  42 lines

  1. #
  2. # Makefile for Alcyon C (version 4.14 required)
  3. #    for use with PD MAKE distributed by us.
  4. #
  5. #    Jwahar Bammi
  6. #    Fix paths below for your set up
  7. #        c:\include\    Path to include files
  8. #        c:\lib\        Path to C library files
  9. #    Configure your time zone in TYME.C
  10. #    Please use a decent version of gemstart.s that gives some
  11. #    breathing room to malloc()
  12. #    Define RECURSE only if you want the expand a directory
  13. #    to all its children feature for `sz', when you specify
  14. #    a directory name as an arg to `sz'.
  15. #
  16. SRC = common.c rz.c sz.c transfer.c util.c main.c tyme.c zm.c fileio.c dummy.c
  17. OBJ = common.o rz.o sz.o transfer.o util.o main.o tyme.o zm.o fileio.o dummy.o
  18. INCLUDE = c:\include
  19. LIB = c:\lib
  20. CPFLAGS = -i $(INCLUDE)\ -DDECL -DRECURSE
  21.  
  22. zmdm.prg : $(OBJ) gemstart.o gemlib osbind.o libf
  23.     $(LINKER) [com[lnk]]
  24.     $(RELMOD) zmdm
  25.  
  26. gemstart.o :
  27.     $(CP) $(LIB)\gemstart.o gemstart.o
  28.  
  29. osbind.o :
  30.     $(CP) $(LIB)\osbind.o osbind.o
  31.  
  32. libf :
  33.     $(CP) $(LIB)\libf libf
  34.  
  35. gemlib :
  36.     $(CP) $(LIB)\gemlib gemlib
  37.  
  38. $(OBJ) : common.h zmdm.h decl.h
  39.  
  40. clean:
  41.     $(RM) *.o *.68k
  42.